#include #include using namespace std; int main() { int x=1; x++;//x=2 ++x;//x=3 --x;//x=2 x--;//x=1 cout << x;//h timh tou x einai 1 kai tupwnei 1 system("PAUSE"); return 0; }